home *** CD-ROM | disk | FTP | other *** search
/ 321 GAMES / 321GAMES.iso / logic / oracle / shared.dxr / 01091_SHARED SCRIPT.ls next >
Encoding:
Text File  |  1994-12-20  |  1.2 KB  |  48 lines

  1. on clearVars totalClear
  2.   global screenRect, cipherPath, puzzle, gemStatus, facing, hex, animName, Jewel, oracleSpeakData, difficultyLevel, music, k, visitedPuzz, randomPlace, MEMORY
  3.   if totalClear then
  4.     set data to ["screenRect", "cipherPath", "music", "k"]
  5.   else
  6.     set data to ["screenRect", "cipherPath", "puzzle", "gemStatus", "facing", "Hex", "animName", "Jewel", "oracleSpeakData", "difficultyLevel", "music", "k", "visitedPuzz", "randomPlace", "MEMORY"]
  7.   end if
  8.   set localpuzzle to 0
  9.   set localscreenRect to 0
  10.   set localcipherPath to 0
  11.   set localgemStatus to 0
  12.   set localfacing to 0
  13.   set localHex to 0
  14.   set localanimName to 0
  15.   set localJewel to 0
  16.   set localoracleSpeakData to 0
  17.   set localdifficultyLevel to 0
  18.   set localmusic to 0
  19.   set localk to 0
  20.   set localvisitedPuzz to 0
  21.   set localrandomPlace to 0
  22.   set localMEMORY to 0
  23.   repeat with counter = 1 to count(data)
  24.     do("set local" & getAt(data, counter) & " to " & getAt(data, counter))
  25.   end repeat
  26.   clearGlobals()
  27.   repeat with counter = 1 to count(data)
  28.     do("set " & getAt(data, counter) & " to local" & getAt(data, counter))
  29.   end repeat
  30. end
  31.  
  32. on keyDown
  33.   exit
  34. end
  35.  
  36. on idle
  37.   myIdle()
  38. end
  39.  
  40. on myIdle
  41.   updateCursor()
  42. end
  43.  
  44. on updateCursor
  45.   global csrChannel
  46.   updateStage()
  47. end
  48.